home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine CD 1995 / Archive Magazine CD 1995.iso / discs / prog_disc / volume_5 / issue_08 / boota / C-source / Make1st next >
Encoding:
Text File  |  1991-12-16  |  1.1 KB  |  46 lines

  1. # Project:   1stMake
  2.  
  3.  
  4. # Toolflags:
  5. CCflags = -c -depend !Depend -throwback -IC:
  6. Linkflags = -o $@
  7. ObjAsmflags = -depend !Depend -ThrowBack -Stamp -quit -CloseExec
  8. CMHGflags = 
  9. LibFileflags = -c -o $@
  10. Squeezeflags = -o $@
  11. AAsmflags = -depend !Depend -quit -CloseExec -To $@ -From
  12.  
  13.  
  14. # Final targets:
  15. @.^.!1stMake.1stMake:     @.o.1stMake @.o.argfuncs @.o.GetDirs c:o.Stubs 
  16.         Link $(Linkflags) @.o.1stMake @.o.argfuncs @.o.GetDirs c:o.Stubs 
  17.  
  18.  
  19. # User-editable dependencies:
  20.  
  21. # Static dependencies:
  22. @.o.1stMake:   @.c.1stMake
  23.         cc $(ccflags) -o @.o.1stMake @.c.1stMake 
  24. @.o.argfuncs:   @.c.argfuncs
  25.         cc $(ccflags) -o @.o.argfuncs @.c.argfuncs 
  26. @.o.GetDirs:   @.c.GetDirs
  27.         cc $(ccflags) -o @.o.GetDirs @.c.GetDirs 
  28.  
  29.  
  30. # Dynamic dependencies:
  31. o.argfuncs:    c.argfuncs
  32. o.argfuncs:    C:h.kernel
  33. o.argfuncs:    C:h.swis
  34. o.argfuncs:    h.GetDirs
  35. o.argfuncs:    h.Useful
  36. o.argfuncs:    h.Argfuncs
  37. o.1stMake:    c.1stMake
  38. o.1stMake:    C:h.kernel
  39. o.1stMake:    h.GetDirs
  40. o.1stMake:    h.ArgFuncs
  41. o.1stMake:    h.Useful
  42. o.GetDirs:    c.GetDirs
  43. o.GetDirs:    C:h.kernel
  44. o.GetDirs:    h.getdirs
  45. o.GetDirs:    h.useful
  46.